218341e05824e1f3b251f4a94797d5963f080107,plugins/svn4idea/src/org/jetbrains/idea/svn/history/SvnChangeList.java,SvnChangeList,loadChanges,#,104

Before Change


                               new SvnRepositoryContentRevision(myVcs, myRepositoryRoot, path, getLocalPath(path), myRevision)));
    }
    for(String path: myDeletedPaths) {
      myChanges.add(new Change(new SvnRepositoryContentRevision(myVcs, myRepositoryRoot, path, getLocalPath(path), myRevision-1),
                               null));

    }

After Change


      myChanges.add(new Change(null, SvnRepositoryContentRevision.create(myVcs, myRepositoryRoot, path, getLocalPath(path), myRevision)));
    }
    for(String path: myDeletedPaths) {
      myChanges.add(new Change(SvnRepositoryContentRevision.create(myVcs, myRepositoryRoot, path, getLocalPath(path), myRevision-1), null));
    }
    for(String path: myChangedPaths) {
      SvnRepositoryContentRevision beforeRevision = SvnRepositoryContentRevision.create(myVcs, myRepositoryRoot, path, getLocalPath(path), myRevision-1);